LogEntry

data class LogEntry(source: String, level: String, text: String, timestamp: Timestamp, url: String?, lineNumber: Int?, stackTrace: StackTrace?, networkRequestId: RequestId?, workerId: String?, args: List<RemoteObject>?)

Log entry.

Constructors

LogEntry
Link copied to clipboard
fun LogEntry(source: String, level: String, text: String, timestamp: Timestamp, url: String? = null, lineNumber: Int? = null, stackTrace: StackTrace? = null, networkRequestId: RequestId? = null, workerId: String? = null, args: List<RemoteObject>? = null)

Properties

args
Link copied to clipboard
val args: List<RemoteObject>? = null
Call arguments.
level
Link copied to clipboard
val level: String
Log entry severity.
lineNumber
Link copied to clipboard
val lineNumber: Int? = null
Line number in the resource.
networkRequestId
Link copied to clipboard
val networkRequestId: RequestId? = null
Identifier of the network request associated with this entry.
source
Link copied to clipboard
val source: String
Log entry source.
stackTrace
Link copied to clipboard
val stackTrace: StackTrace? = null
JavaScript stack trace.
text
Link copied to clipboard
val text: String
Logged text.
timestamp
Link copied to clipboard
val timestamp: Timestamp
Timestamp when this entry was added.
url
Link copied to clipboard
val url: String? = null
URL of the resource if known.
workerId
Link copied to clipboard
val workerId: String? = null
Identifier of the worker associated with this entry.

Sources

jvm source
Link copied to clipboard